home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgramD2.iso
/
Borland
/
Borland C++ V5.02
/
APXMDIDV.PAK
/
APMDMDI1.CPP
next >
Wrap
C/C++ Source or Header
|
1997-05-06
|
1KB
|
46 lines
//----------------------------------------------------------------------------
// Project ApxMdiDv
// Borland International
// Copyright ⌐ 1996. All Rights Reserved.
//
// SUBSYSTEM: ApxMdiDv Application
// FILE: apmdmdi1.cpp
// AUTHOR:
//
// OVERVIEW
// ~~~~~~~~
// Source file for implementation of TApxMdiDvMDIChild (TMDIChild).
//
//----------------------------------------------------------------------------
#include <owl/pch.h>
#include "apxmddva.h"
#include "apmdmdi1.h"
//{{TApxMdiDvMDIChild Implementation}}
//--------------------------------------------------------
// TApxMdiDvMDIChild
// ~~~~~~~~~~
// Construction/Destruction handling.
//
TApxMdiDvMDIChild::TApxMdiDvMDIChild(TMDIClient& parent, const char far* title, TWindow* clientWnd, bool shrinkToClient, TModule* module)
:
TMDIChild(parent, title, clientWnd, shrinkToClient, module)
{
// INSERT>> Your constructor code here.
}
TApxMdiDvMDIChild::~TApxMdiDvMDIChild()
{
Destroy();
// INSERT>> Your destructor code here.
}